Fix the Shift-Tab support to go backwards.
authorMatthias Clasen <maclas@gmx.de>
Sun, 29 Feb 2004 22:22:12 +0000 (22:22 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 29 Feb 2004 22:22:12 +0000 (22:22 +0000)
Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>

* gtk/gtkentry.c (gtk_entry_completion_key_press):
Fix the Shift-Tab support to go backwards.

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkentry.c

index d526bc4ca7d8af4a12792945d0f15248411c2288..97fe702508afcf3697286497e5046719350b3ff5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): 
+       Fix the Shift-Tab support to go backwards.
+
 Sun Feb 29 16:40:40 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktextview.c (gtk_text_view_class_init): Fix 
index d526bc4ca7d8af4a12792945d0f15248411c2288..97fe702508afcf3697286497e5046719350b3ff5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): 
+       Fix the Shift-Tab support to go backwards.
+
 Sun Feb 29 16:40:40 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktextview.c (gtk_text_view_class_init): Fix 
index d526bc4ca7d8af4a12792945d0f15248411c2288..97fe702508afcf3697286497e5046719350b3ff5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): 
+       Fix the Shift-Tab support to go backwards.
+
 Sun Feb 29 16:40:40 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktextview.c (gtk_text_view_class_init): Fix 
index d526bc4ca7d8af4a12792945d0f15248411c2288..97fe702508afcf3697286497e5046719350b3ff5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): 
+       Fix the Shift-Tab support to go backwards.
+
 Sun Feb 29 16:40:40 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktextview.c (gtk_text_view_class_init): Fix 
index d526bc4ca7d8af4a12792945d0f15248411c2288..97fe702508afcf3697286497e5046719350b3ff5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Feb 29 23:25:35 2004  Matthias Clasen  <maclas@gmx.de>
+
+       * gtk/gtkentry.c (gtk_entry_completion_key_press): 
+       Fix the Shift-Tab support to go backwards.
+
 Sun Feb 29 16:40:40 2004  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtktextview.c (gtk_text_view_class_init): Fix 
index 1a28f86002df9cdccfca77fee9c1c5dc54a741f4..dbdbaf86dd47aacc1ca3b050cf1e06c2bfc5be9d 100644 (file)
@@ -4652,8 +4652,7 @@ gtk_entry_completion_key_press (GtkWidget   *widget,
       
       entry = gtk_entry_completion_get_entry (completion);
 
-      gtk_widget_child_focus (gtk_widget_get_toplevel (entry), 
-                             GTK_DIR_TAB_FORWARD);
+      gtk_widget_child_focus (gtk_widget_get_toplevel (entry), dir);
 
       return TRUE;
     }